home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 273_01 / leftstr.cc < prev    next >
Text File  |  1987-09-23  |  254b  |  10 lines

  1. left_str(int x, char *str, char *new_str)
  2. /* Please the left x number of character from *str into *new_str */
  3. {
  4.         while(x && *str) {
  5.                 *new_str=*str;
  6.                 new_str++; str++; x--;
  7.         }
  8.         *new_str=0x00;
  9. }
  10.